home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 301-325 / disk_319 / cnewssrc / cnews.src.lzh / libfake / index.c < prev    next >
C/C++ Source or Header  |  1980-01-01  |  236b  |  16 lines

  1. /*
  2.  * index - find first occurrence of a character in a string
  3.  */
  4.  
  5. #define    NULL    0
  6.  
  7. char *                /* found char, or NULL if none */
  8. index(s, charwanted)
  9. char *s;
  10. char charwanted;
  11. {
  12.     extern char *strchr();
  13.  
  14.     return(strchr(s, charwanted));
  15. }
  16.